C1SelectionManager.GetSelection<T> Delegate
In This Topic
Retrieves all the items that are comprised between the startItem and the endItem. Used when making a consecutive selection.
Syntax
'Declaration
Public Delegate Function C1SelectionManager.GetSelection(Of )( _
ByVal As , _
ByVal As _
) As IList(Of T)
public delegate IList<T> C1SelectionManager.GetSelection<>(
,
)
Parameters
- startItem
- The first item in the selection
- endItem
- The last item in the selection
Type Parameters
- T
Return Value
A list of items that are comprised between the start and end items
See Also